home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / mlib / include / mlabel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-26  |  666 b   |  22 lines

  1.  
  2. #ifndef __MLABEL_H
  3. #define __MLABEL_H
  4.  
  5. #define MLABEL_ID            0x0111
  6.  
  7. class MLabel : public MWindow {
  8. protected:
  9.     cArray                   label;
  10. public:
  11.                  MLabel (int x1, int y1, int x2, int y2, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
  12.                  MLabel (const RECT& ABox, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
  13.     virtual void             Draw (void);
  14.     virtual inline classType isA (void) {return (MLABEL_ID);};
  15.     virtual void             LoadDirect (int fp);
  16.     virtual void             SaveDirect (int fp);
  17.     inline virtual void      SetLabel (BYTE *NewLabel);
  18.                 ~MLabel (void);
  19. };
  20.  
  21. #endif
  22.